home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’94 / [√] Distribution Restricted! / Steve Sisak / TMFutures / FuturesDemo.h < prev    next >
Text File  |  1994-06-26  |  624b  |  22 lines

  1. #ifndef __FUTURESDEMO__
  2. #define __FUTURESDEMO__
  3.  
  4. #include <AppleEvents.h>
  5.  
  6. #define kSillyEventClass 'sily'
  7. #define kPingEvent  'ping'
  8. #define kPing1Event 'png1'
  9. #define kPing2Event 'png2'
  10.  
  11. pascal OSErr HandlePing(AppleEvent question, AppleEvent answer, long handlerRefcon);
  12. pascal OSErr HandlePing1(AppleEvent question, AppleEvent answer, long handlerRefcon);
  13. pascal OSErr HandlePing2(AppleEvent question, AppleEvent answer, long handlerRefcon);
  14.  
  15. void SendSimpleAEvt(AEEventClass theAEEventClass, AEEventID theAEEventID);
  16.  
  17. pascal void InitFuturesDemo(void);
  18. pascal void CleanupFuturesDemo(void);
  19.  
  20. #endif // __FUTURESDEMO__
  21.  
  22.